<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
    <channel>
        <title>Global Internet Business Solutions ~ GIBS</title> 
        <link>https://gibs.com</link> 
        <description>RSS feeds for Global Internet Business Solutions ~ GIBS</description> 
        <ttl>60</ttl> <item>
    <comments>https://gibs.com/Support/Knowledge-Base/ID/133/ARP_cache_in_windows_7VistaXP2000Server_20032008#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>https://gibs.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=51&amp;ModuleID=411&amp;ArticleID=133</wfw:commentRss> 
    <trackback:ping>https://gibs.com:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=133&amp;PortalID=0&amp;TabID=51</trackback:ping> 
    <title>ARP cache in windows 7/Vista/XP/2000/Server 2003/2008</title> 
    <link>https://gibs.com/Support/Knowledge-Base/ID/133/ARP_cache_in_windows_7VistaXP2000Server_20032008</link> 
    <description>The Address Resolution Protocol (ARP) is very crucial for TCP/IP network communication. If you begin to notice network connectivity problems such as particular web pages not loading or not being able to ping certain IP addresses then clearing your ARP cache is a good place to start.The TCP/IP ARP Command component provides the functionality to add, delete, or display the IP address for Media Access Control (MAC) address translation.
To flush/Delete the ARP cache in windows 7/Vista/XP/2000/Server 2003/2008 follow this procedure
&nbsp;
Click on Start&mdash;&gt;Run&mdash;&gt; type the following command click ok
&nbsp;
netsh interface ip delete arpcache
&nbsp;
Dynamic ARP cache entries update persist for 2-20 minutes depending on the system.
&nbsp;
Windows 2003 Server = 10 minutes
&nbsp;
Windows 2000 professional/Server = 10 minutes
&nbsp;
Windows XP = 2 minutes
&nbsp;
Solaris = 5 minutes
&nbsp;
Delete IP address using arp command
&nbsp;
arp -d &lt;ip address&gt;
&nbsp;
Example
&nbsp;
arp -d 10.1.1.2
&nbsp;
Display arp table
&nbsp;
arp -a
&nbsp;
Add static entry to ARP table
&nbsp;
arp -s &lt;ip address&gt; &lt;mac address&gt;
&nbsp;
Example
&nbsp;
arp -s 157.55.85.212 00-aa-00-62-c6-09</description> 
    <dc:creator></dc:creator> 
    <pubDate>Thu, 15 Dec 2011 10:30:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:133</guid> 
    
</item>
<item>
    <comments>https://gibs.com/Support/Knowledge-Base/ID/134/Manually_Set_a_Static_IP_Address#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>https://gibs.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=51&amp;ModuleID=411&amp;ArticleID=134</wfw:commentRss> 
    <trackback:ping>https://gibs.com:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=134&amp;PortalID=0&amp;TabID=51</trackback:ping> 
    <title>Manually Set a Static IP Address</title> 
    <link>https://gibs.com/Support/Knowledge-Base/ID/134/Manually_Set_a_Static_IP_Address</link> 
    <description>In Windows Server 2008 Core installation, the only way to setup IP Address eithe Static or DHCP is from the command line. The following procedure helps setting the IP Address from the command Line using &ldquo;netsh&rdquo;. This procedure works in Windows Server 2008 (No core installation as well), Windows Server 2003, Windows XP, Windows Vista.
&nbsp;
To setup Static IP Address:
&nbsp;
From the command prompt:
&nbsp;
1. Type 
C:\Users\Administrator&gt; netsh interface ipv4 show interfaces
&nbsp;Idx&nbsp; Met&nbsp;&nbsp; MTU&nbsp;&nbsp; State&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Name
&nbsp;&mdash;&nbsp; &mdash;&nbsp; &mdash;&ndash;&nbsp; &mdash;&mdash;&mdash;&ndash;&nbsp; &mdash;&mdash;&mdash;&mdash;&mdash;&mdash;-
&nbsp;&nbsp; 1&nbsp;&nbsp; 50 4294967295&nbsp; connected&nbsp;&nbsp;&nbsp; Loopback Pseudo-Interface 1
&nbsp; 10&nbsp;&nbsp; 20&nbsp;&nbsp; 1500&nbsp; connected&nbsp;&nbsp;&nbsp; Local Area Connection
&nbsp;
This should show the Network Connections. We are looking for the name here. On mine, I have one LAN interface and is named as &ldquo;Local Area Connection&rdquo;
&nbsp;
2. To set a static IP Address type the following command
&nbsp;
C:\Users\Administrator&gt;netsh interface ipv4 set address name=&rdquo;Local Area Connect
&nbsp;ion&rdquo; source=static address=192.168.0.5 mask=255.255.255.0 gateway=192.168.0.1
&nbsp;
The syntax is
&nbsp;
netsh interface ipv4 set address name=&rdquo;&lt;ID&gt;&rdquo; source=static address=&lt;StaticIP&gt; mask=&lt;SubnetMask&gt; gateway=&lt;DefaultGateway&gt;
&nbsp;
Where:
&nbsp;ID is the name of the LAN Connection
&nbsp;StaticIP is the static IP address that you are setting
&nbsp;SubnetMask is the subnet mask for the IP address
&nbsp;DefaultGateway is the default gateway
&nbsp;
3. Now set the DNS Servers one at a time with the followind command. For each DNS server, increase the index number.
&nbsp;
C:\Users\Administrator&gt;netsh interface ipv4 add dnsserver name=&rdquo;Local Area Conne
&nbsp;ction&rdquo; address=192.168.0.1 index=1
&nbsp;
C:\Users\Administrator&gt;netsh interface ipv4 add dnsserver name=&rdquo;Local Area Conne
&nbsp;ction&rdquo; address=192.168.0.10 index=2
&nbsp;
The syntax is
&nbsp;
netsh interface ipv4 add dnsserver name=&rdquo;&lt;ID&gt;&rdquo; address=&lt;DNSIP&gt;index=1
&nbsp;
Where:
&nbsp;ID is the name of the Network Connection
&nbsp;DNSIP is the IP address of your DNS server
&nbsp;
This should do. To confirm, do an &ldquo;ipconfig&rdquo;
Ethernet adapter Local Area Connection:
&nbsp;
&nbsp;&nbsp; Connection-specific DNS Suffix&nbsp; . :
&nbsp;&nbsp;&nbsp; Description . . . . . . . . . . . : Broadcom 440x 10/100 Integrated Controller
&nbsp;&nbsp;&nbsp; Physical Address. . . . . . . . . : 00-1D-09-D4-2C-8F
&nbsp;&nbsp;&nbsp; DHCP Enabled. . . . . . . . . . . : No
&nbsp;&nbsp;&nbsp; Autoconfiguration Enabled . . . . : Yes
&nbsp;&nbsp;&nbsp; IPv4 Address. . . . . . . . . . . : 192.168.0.5(Preferred)
&nbsp;&nbsp;&nbsp; Subnet Mask . . . . . . . . . . . : 255.255.255.0
&nbsp;&nbsp;&nbsp; Default Gateway . . . . . . . . . : 192.168.0.1
&nbsp;&nbsp;&nbsp; DNS Servers . . . . . . . . . . . : 192.168.0.1
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 192.168.0.10
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 127.0.0.1
&nbsp;&nbsp;&nbsp; NetBIOS over Tcpip. . . . . . . . : Enabled
&nbsp;
Set IP through DHCP Server
&nbsp;
To set the DHCP Server, from the command line
&nbsp;
C:\Users\Administrator&gt; netsh interface ipv4 set address name=&rdquo;Local Area Connection&rdquo; source=dhcp
&nbsp;
Syntax is
&nbsp;
netsh interface ipv4 set address name=&rdquo;ID&rdquo; source=dhcp
&nbsp;
where ID is the name of the Network Connection</description> 
    <dc:creator></dc:creator> 
    <pubDate>Thu, 15 Dec 2011 10:23:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:134</guid> 
    
</item>

    </channel>
</rss>